/* Import a clean font */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #1c1c1c;
  color: white;
  font-family: 'Vazirmatn', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-message {
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2rem;
  margin: 0;
}

p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #aaa;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
